44e2222701bdc8d02180c76976659eb63103bf88,transfuse/src/main/java/org/androidtransfuse/plugins/ServicePlugin.java,ServicePlugin,run,#ConfigurationRepository#,32

Before Change


        repository.component(Service.class).method("onDestroy").event(OnDestroy.class);
        repository.component(Service.class).method("onLowMemory").event(OnLowMemory.class);
        repository.component(Service.class).method("onRebind", AndroidLiterals.INTENT).event(OnRebind.class);
        repository.component(Service.class).method("onConfigurationChanged", AndroidLiterals.CONTENT_CONFIGURATION).event(OnConfigurationChanged.class);
        repository.component(Service.class).extending(AndroidLiterals.INTENT_SERVICE)
                .method("onHandleIntent", AndroidLiterals.INTENT).event(OnHandleIntent.class);

After Change


        repository.component(Service.class).method("onDestroy").event(OnDestroy.class).superCall();
        repository.component(Service.class).method("onLowMemory").event(OnLowMemory.class).superCall();
        repository.component(Service.class).method("onRebind", AndroidLiterals.INTENT).event(OnRebind.class).superCall();
        repository.component(Service.class).method("onConfigurationChanged", AndroidLiterals.CONTENT_CONFIGURATION).event(OnConfigurationChanged.class).superCall();
        repository.component(Service.class).extending(AndroidLiterals.INTENT_SERVICE)
                .method("onHandleIntent", AndroidLiterals.INTENT).event(OnHandleIntent.class).superCall();